home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / PowerPlant / AGA Classes 1.2 / Progress Indicators / LAGAProgressIndicator.h < prev   
Text File  |  1996-06-30  |  3KB  |  92 lines

  1. // ===========================================================================
  2. //    LAGAProgressIndicator.h
  3. // ===========================================================================
  4. //    “Apple Grayscale Appearance” compliant Determinate progress indicator control
  5. //    Copyright © 1996 Chrisoft (Christophe ANDRES)  All rights reserved.
  6. //
  7. //    You may use this source code in any application (commercial, shareware, freeware,
  8. //    postcardware, etc), but not remove this notice (no need to acknowledge the use of
  9. //    this class in the about box)
  10. //    You may not sell this source code in any form. This source code may be placed on 
  11. //    publicly accessable archive sites and source code disks. It may not be placed on 
  12. //    profit archive sites and source code disks without the permission of the author, 
  13. //    Christophe ANDRES.
  14. //    
  15. //        This source code is distributed in the hope that it will be useful,
  16. //        but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. //        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  18. //
  19. //    If you make any change or improvement on this class, please send the improved/changed
  20. //    version to : chrisoft@calva.net or Christophe ANDRES
  21. //                                     20, rue Prosper Mérimée
  22. //                                     67100 STRASBOURG
  23. //                                     FRANCE
  24. //
  25. // ===========================================================================
  26. //    LAGAProgressIndicator.cp            <- double-click + Command-D to see class implementation
  27. //
  28. //    LAGAProgressIndicator is my implementation of the “Apple Grayscale Appearance for System 7.5”
  29. //        determinate progress indicator.
  30. //        Use the IncrementValue or SetValue methods to update the progress indicator
  31. //
  32. //        This class requires AGAColors.cp to be present in your project
  33. //
  34. //        Version : 1.2
  35. //
  36. //        Change History (most recent first, date in US form : mm/dd/yy):
  37. //
  38. //                        06/30/96    ca        Public release of version 1.2
  39. //                        06/04/96    ca        added RegisterClass method for easy registry
  40. //                                                        Added guard macros in header files
  41. //                                                        Increased version to 1.2
  42. //                        05/21/96    ca        class made available by Christophe ANDRES <chrisoft@calva.net>
  43. //                                                        (version 1.1)
  44. //
  45. //        To Do:
  46. //
  47.  
  48. #ifndef _H_LAGAProgressIndicator
  49. #define _H_LAGAProgressIndicator
  50. #pragma once
  51.  
  52. #include <LPane.h>
  53.  
  54. class    LAGAProgressIndicator : public LPane
  55. {
  56.     public        :
  57.         enum { class_ID = 'AGA6' };
  58.         static void RegisterClass ();                                                                                                                                        //    <06/04/96    ca>
  59.         static LAGAProgressIndicator* CreateAGAProgressIndicatorStream (LStream* inStream);
  60.         
  61.         LAGAProgressIndicator ();
  62.         
  63.         LAGAProgressIndicator (LStream *inStream);
  64.         
  65.         LAGAProgressIndicator (const LAGAProgressIndicator &inOriginal);
  66.         
  67.         LAGAProgressIndicator (const SPaneInfo &inPaneInfo, Int32 inInitialValue, Int32 inMinValue, Int32 inMaxValue);
  68.         
  69.         virtual Int32 GetValue () const { return mValue; };
  70.         
  71.         virtual void SetValue (Int32 inValue);
  72.         
  73.         virtual void IncrementValue (Int32 inIncrement = 1);
  74.     
  75.         Int32 GetMinValue () const { return mMinValue; };
  76.         
  77.         virtual void SetMinValue (Int32 inMinValue);
  78.     
  79.         Int32 GetMaxValue () const { return mMaxValue; };
  80.         
  81.         virtual void SetMaxValue (Int32 inMaxValue);
  82.         
  83.     protected    :
  84.         virtual void DrawSelf ();
  85.  
  86.         Int32 mValue;
  87.         Int32 mMinValue;
  88.         Int32 mMaxValue;
  89. };
  90.  
  91. #endif
  92.